home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / glass / glass.lha / GLASS / tmc / config.h < prev    next >
C/C++ Source or Header  |  1991-02-14  |  2KB  |  84 lines

  1. /* 
  2.    Copyright (C) 1990 C van Reewijk, email: dutentb.uucp!reeuwijk
  3.  
  4. This file is part of GLASS.
  5.  
  6. GLASS is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GLASS is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GLASS; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /* File: config.h
  21.  *
  22.  * Some configuration constants.
  23.  */
  24. #define STRBUFSZ 1024    /* Maximum size of a string */
  25.  
  26. #ifdef GOT_DECL
  27. #undef GOT_DECL
  28. #endif
  29.  
  30. #ifdef IBM 
  31. #define TMREALLOC(p,n) realloc((char *)(p),n)
  32. #define TMFREE(p) free((char *)(p))
  33. #define GOT_DECL
  34. #endif
  35.  
  36. #ifdef hpux
  37. #include <malloc.h>
  38. #include <string.h>
  39. extern void exit();
  40. #ifdef hp9000s300
  41. /* The defines below are necessary to stop complaints on various machines
  42.  * about incompatible types to realloc() and free(). On hpux v7.0 a void *
  43.  * are used, but not interpreted as a neutral pointer type. AAAARGGHHH.
  44.  */
  45. #define TMREALLOC(p,n) realloc((void *)(p),n)
  46. #define TMFREE(p) free((void *)(p))
  47. #else
  48. #define TMREALLOC(p,n) realloc((char *)(p),n)
  49. #define TMFREE(p) free((char *)(p))
  50. #endif
  51. #define GOT_DECL
  52. #endif
  53.  
  54. #ifdef __TURBOC__
  55. #include <stdlib.h>
  56. #include <string.h>
  57. #define TMREALLOC realloc
  58. #define TMFREE free
  59. #define GOT_DECL
  60. #endif
  61.  
  62. #ifdef APOLLO
  63. #include <strings.h>
  64. #define GOT_DECL
  65. extern char *malloc();
  66. extern free();
  67. extern exit();
  68. #define TMREALLOC(p,n) realloc((char *)(p),n)
  69. #define TMFREE(p) free((char *)(p))
  70. #endif
  71.  
  72. #ifndef GOT_DECL
  73. #ifdef BSD
  74. #include <strings.h>
  75. #else
  76. #include <string.h>
  77. #endif
  78. extern char *malloc();
  79. extern free();
  80. extern exit();
  81. #define TMREALLOC(p,n) realloc((char *)(p),n)
  82. #define TMFREE(p) free((char *)(p))
  83. #endif
  84.